/* =========================================================
   1. IMPORTATION DES POLICES & VARIABLES
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@500;700&family=Dancing+Script:wght@600;700&family=Montserrat:wght@400;500;600;700&family=Outfit:wght@400;600;700&family=Rubik+Dirt&display=swap');

:root {
    --vert-sauge: #9DB0A0;
    --vert-sauge-fonce: #7A917E;
    --gris-anthracite: #455A64;
    --marron-grise: #455A64;
    --blanc-casse: #f6f4f0;
    --orange-pastel: #ff9376;
    
    --font-principale: 'Montserrat', sans-serif;
    --font-manuscrite: 'Dancing Script', cursive;
    --font-script-secondaire: 'Caveat', cursive;
    --font-geometrique: 'Outfit', sans-serif;
    --font-effet-rust: 'Rubik Dirt', cursive;
}

/* =========================================================
   2. REINITIALISATION & REGLES GLOBALES
   ========================================================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: clip;
}

body {
    font-family: var(--font-principale);
    background-color: var(--blanc-casse);
    color: var(--gris-anthracite);
    line-height: 1.6;
}

img, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* UNIFORMISATION DU HAUT DE PAGE (DISTANCE DE LA BARRE D'ONGLETS) */
main > :first-child {
    margin-top: 40px;
    padding-top: 0;
}

main h1 {
    margin-top: 0;
}

/* =========================================================
   3. BANNIERE HAUTE & NAVIGATION STICKY
   ========================================================= */
.header-banner {
    background-color: var(--blanc-casse);
    border-bottom: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    width: 100%;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 35px;
    padding: 20px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
}

.site-logo {
    max-height: 130px;
    width: auto;
    transition: transform 0.3s ease;
}

.site-logo:hover {
    transform: scale(1.02);
}

.banner-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 30px;
    border-left: 2px solid rgba(0, 0, 0, 0.05);
}

.company-name {
    font-family: var(--font-geometrique);
    font-size: 2.4rem;
    color: var(--vert-sauge-fonce);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.1;
    margin-bottom: 4px;
}

.site-title {
    font-family: var(--font-manuscrite);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gris-anthracite);
    line-height: 1.1;
}

.site-subtitle {
    font-family: var(--font-geometrique);
    font-size: 0.9rem;
    color: var(--gris-anthracite);
    font-weight: 600;
    margin-top: 6px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.85;
}

/* NAVIGATION FIXE AU DEFILEMENT */
.main-nav {
    background-color: var(--blanc-casse);
    border-top: none;
    border-bottom: 2px solid var(--vert-sauge);
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.nav-tabs {
    display: flex;
    justify-content: center;
    list-style: none;
    flex-wrap: nowrap !important;
    gap: 4px;
    padding: 0 10px;
    max-width: 1250px;
    margin: 0 auto;
}

.nav-tabs a {
    display: block;
    padding: 14px 14px;
    text-decoration: none;
    color: var(--gris-anthracite);
    font-weight: 600;
    font-size: 0.86rem;
    border-radius: 8px 8px 0 0;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.nav-tabs a:hover,
.nav-tabs a.active {
    background-color: var(--vert-sauge);
    color: #ffffff;
}

.nav-tabs a.btn-tab-accent {
    background-color: var(--orange-pastel);
    color: #ffffff;
}

.nav-tabs a.btn-tab-accent:hover {
    background-color: #f77f60;
}

/* =========================================================
   4. ALIGNEMENT ET PROPORTIONS DES ICONES DANS LES TITRES
   ========================================================= */
.info-card-box h2,
.case-header h2,
.case-analysis h3,
.contact-reassurance h4,
.feedback-item span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.info-card-box h2 img,
.case-header h2 img,
.case-analysis h3 img,
.contact-reassurance h4 img,
.feedback-item img {
    height: 1.2em;
    width: auto;
    display: inline-block;
}

/* =========================================================
   5. BOUTONS & ELEMENTS COMMUNS
   ========================================================= */
.btn-primary {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background-color: var(--orange-pastel);
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.badge-certification {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 16px;
    background-color: var(--vert-sauge);
    color: #ffffff;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* =========================================================
   6. PAGE ACCUEIL
   ========================================================= */
.hero-home {
    max-width: 900px;
    margin: 0 auto 40px auto;
    padding: 0 20px;
    text-align: center;
}

.hero-intro {
    font-size: 1.15rem;
    color: var(--gris-anthracite);
    line-height: 1.6;
    margin: 20px auto 40px auto;
    max-width: 750px;
}

.cards-stack {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
    text-align: left;
}

.info-card-box {
    background-color: #ffffff;
    padding: 30px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.info-card-box.border-sauge {
    border-top: 5px solid var(--vert-sauge);
}

.info-card-box.border-orange {
    border-top: 5px solid var(--orange-pastel);
}

.info-card-box h2 {
    font-family: var(--font-geometrique);
    color: var(--gris-anthracite);
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.info-card-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gris-anthracite);
    margin: 0;
}

/* GRILLE ET CARTES SIGNAUX (ACCUEIL) */
.signaux-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.signaux-card {
    background-color: var(--blanc-casse);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: fit-content;
    transition: all 0.3s ease;
}

.signaux-card .suspect-header-content {
    min-height: auto;
    margin-bottom: 0;
}

.signaux-card p,
.signaux-card > *:last-child {
    margin-bottom: 0;
}

/* =========================================================
   7. PAGE LES SUSPECTS
   ========================================================= */
.suspects-intro {
    font-size: 1.15rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.suspects-intro h1 {
    font-family: var(--font-geometrique);
    color: var(--gris-anthracite);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.suspects-disclaimer {
    font-size: 0.75rem;
    font-style: italic;
    margin-top: 10px;
    color: var(--gris-anthracite);
    opacity: 0.85;
}

.suspects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
    align-items: stretch;
}

.suspect-card {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 30px 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.3s ease;
}

.signaux-card:hover,
.suspect-card:hover,
.zone-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
    cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='36' height='36' viewBox='0 0 24 24' fill='none' stroke='%23ff9376' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><circle cx='10' cy='10' r='7'></circle><line x1='21' y1='21' x2='15' y2='15'></line></svg>") 4 4, pointer;
}

.suspect-header-content {
    display: flex;
    flex-direction: column;
    min-height: 145px;
    margin-bottom: 20px;
}

.suspect-badge {
    display: inline-block;
    width: fit-content;
    background-color: var(--orange-pastel);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.suspect-card h2 {
    font-family: var(--font-geometrique);
    color: var(--gris-anthracite);
    font-size: 1.35rem;
    margin-bottom: 8px;
    line-height: 1.25;
}

.suspect-alias {
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
    margin-top: auto;
    margin-bottom: 0;
}

.suspect-card p {
    line-height: 1.6;
    color: var(--gris-anthracite);
    font-size: 0.95rem;
    margin: 0;
}

.cta-suspects-block {
    background-color: var(--vert-sauge);
    border: none;
    padding: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    margin-bottom: 40px;
}

.cta-suspects-block h2 {
    font-family: var(--font-geometrique);
    color: var(--gris-anthracite);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.cta-suspects-block p {
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 25px auto;
    color: var(--gris-anthracite);
}

/* =========================================================
   8. PAGE PROTOCOLE D'INTERVENTION / MISSIONS
   ========================================================= */
.missions-intro {
    font-size: 1.15rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.missions-intro h1 {
    font-family: var(--font-geometrique);
    color: var(--gris-anthracite);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
}

.step-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 25px;
    align-items: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.step-card:nth-child(odd) {
    border-left: 5px solid var(--vert-sauge);
}

.step-card:nth-child(even) {
    border-left: 5px solid var(--orange-pastel);
}

.step-number {
    font-family: var(--font-geometrique);
    font-size: 2.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    color: #ffffff;
}

.step-card:nth-child(odd) .step-number {
    background-color: var(--vert-sauge);
}

.step-card:nth-child(even) .step-number {
    background-color: var(--orange-pastel);
}

.step-content h2 {
    font-family: var(--font-geometrique);
    color: var(--gris-anthracite);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.step-content .step-tagline {
    font-weight: 600;
    color: var(--vert-sauge-fonce);
    font-size: 0.95rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--gris-anthracite);
    line-height: 1.6;
    margin: 0;
}

.cta-box {
    background-color: var(--vert-sauge);
    border: none;
    border-radius: 8px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    text-align: left;
}

.cta-stamp {
    flex-shrink: 0;
    width: 270px;
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.cta-stamp:hover {
    transform: rotate(0deg) scale(1.02);
}

.cta-content {
    flex: 1;
    text-align: center;
}

.cta-box h3 {
    font-family: var(--font-geometrique);
    color: var(--gris-anthracite);
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.cta-box p {
    color: var(--gris-anthracite);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 0;
}

.cta-caption {
    font-style: italic;
    font-size: 0.75rem;
    color: var(--gris-anthracite);
    margin-top: 15px !important;
    opacity: 0.8;
}

/* =========================================================
   9. PAGE ZONES D'INTERVENTION
   ========================================================= */
.zones-intro {
    font-size: 1.15rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.zones-intro h1 {
    font-family: var(--font-geometrique);
    color: var(--gris-anthracite);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.zones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.zone-card {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 30px 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-left: 5px solid var(--vert-sauge);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.zone-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.zone-card:nth-child(even) {
    border-left-color: var(--orange-pastel);
}

.zone-badge {
    display: inline-block;
    background-color: var(--vert-sauge);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 15px;
    align-self: flex-start;
    letter-spacing: 0.5px;
}

.zone-card:nth-child(even) .zone-badge {
    background-color: var(--orange-pastel);
}

.zone-card h2 {
    font-family: var(--font-geometrique);
    color: var(--gris-anthracite);
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.zone-card p {
    line-height: 1.6;
    color: var(--gris-anthracite);
    font-size: 0.95rem;
    margin: 0;
}

.cta-zones-block {
    background-color: var(--vert-sauge);
    border: none;
    border-radius: 8px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    margin-bottom: 60px;
}

.cta-zones-block h3 {
    font-family: var(--font-geometrique);
    color: var(--gris-anthracite);
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.cta-zones-block p {
    color: var(--gris-anthracite);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 0;
}

.cta-zones-block .btn-primary {
    margin-top: 20px;
    display: inline-block;
}

/* =========================================================
   10. PAGE CONTACT & FORMULAIRES
   ========================================================= */
.page-contact {
    padding-top: 0;
}

.contact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.contact-header h1 {
    font-family: var(--font-geometrique);
    color: var(--gris-anthracite);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.contact-header p {
    font-size: 1.1rem;
    color: var(--gris-anthracite);
    line-height: 1.6;
    margin: 0 auto 20px auto;
    max-width: 750px;
}

.form-features {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: var(--gris-anthracite);
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.form-card {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    background-color: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    margin-bottom: 22px;
}

.grid-2col-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--gris-anthracite);
    font-size: 0.95rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--blanc-casse);
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    font-family: var(--font-principale);
    font-size: 0.95rem;
    color: var(--gris-anthracite);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background-color: #ffffff;
    border-color: var(--vert-sauge);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    margin-top: 4px;
}

.checkbox-group label {
    font-weight: normal;
    font-size: 0.85rem;
}

.btn-submit {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    padding: 14px;
}

.contact-info-card {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    border-top: 4px solid var(--vert-sauge);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: fit-content;
}

.contact-info-card h3 {
    font-family: var(--font-geometrique);
    color: var(--gris-anthracite);
    margin-bottom: 15px;
}

.info-list {
    list-style: none;
    margin-bottom: 25px;
}

.info-list li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.info-list a.email-link {
    color: var(--gris-anthracite);
    font-weight: normal;
    white-space: nowrap;
}

.contact-reassurance {
    background-color: var(--blanc-casse);
    padding: 15px;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-reassurance h4 {
    color: var(--gris-anthracite);
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.contact-reassurance p {
    font-size: 0.85rem;
}

.form-column {
    display: flex;
    flex-direction: column;
}

.form-features {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: var(--gris-anthracite);
}

.form-features span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.form-features .check {
    color: var(--vert-sauge);
    font-weight: bold;
    font-size: 1.1rem;
}

.label-optional {
    font-weight: normal;
    font-size: 0.9rem;
    opacity: 0.75;
}

/* AUTOCOMPLETE VILLE */
.autocomplete-container {
    position: relative;
    width: 100%;
}

.autocomplete-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 99;
    max-height: 200px;
    overflow-y: auto;
    margin-top: 2px;
}

.autocomplete-suggestion {
    padding: 10px 15px;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--gris-anthracite);
    border-bottom: 1px solid #f1f1f1;
    transition: background-color 0.2s ease;
}

.autocomplete-suggestion:last-child {
    border-bottom: none;
}

.autocomplete-suggestion:hover {
    background-color: var(--blanc-casse);
    color: var(--orange-pastel, #e67e22);
}

.form-rgpd-notice {
    font-style: italic;
    font-size: 0.85rem;
    color: var(--gris-anthracite);
    text-align: center;
    margin-top: 12px;
    line-height: 1.4;
}

.success-message-box {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--orange-pastel, #e67e22);
    border-radius: 8px;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.success-message-box h3 {
    font-family: var(--font-geometrique);
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.success-message-box p {
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

/* =========================================================
   11. PAGE AFFAIRES CLASSEES
   ========================================================= */
.hero-cases {
    text-align: center; /* Alignement du titre et du contenu au centre */
    padding: 0 0 20px 0;
}

.hero-intro {
    font-size: 1.1rem;
    color: var(--gris-anthracite);
    max-width: 700px;
    margin: 10px auto 0 auto;
}

.cases-gallery {
    margin-bottom: 60px;
}

.cases-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.investigation-report-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border-top: 5px solid var(--orange-pastel);
}

.card-inner {
    padding: 30px;
}

.case-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.case-header h2 {
    font-family: var(--font-geometrique);
    color: var(--gris-anthracite);
    font-size: 1.6rem;
    margin: 0;
}

.badge-status {
    background-color: var(--vert-sauge);
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.duo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.case-col {
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    position: relative;
    margin-top: 15px;
}

.col-before {
    background: #fdf5f0;
    border: 2px dashed var(--orange-pastel);
}

.col-after {
    background: #f4f8f4;
    border: 2px dashed var(--vert-sauge);
}

.plot-icon {
    position: absolute;
    top: -5px;
    left: -12px;
    width: 50px;
    height: auto;
    filter: contrast(120%) drop-shadow(2px 3px 4px rgba(0, 0, 0, 0.15));
    transform: rotate(-10deg);
    z-index: 10;
}

.stamp-icon {
    position: absolute;
    top: -15px;
    right: -20px;
    left: auto;
    width: 120px;
    height: auto;
    filter: drop-shadow(2px 3px 5px rgba(0, 0, 0, 0.15));
    transform: rotate(30deg);
    z-index: 10;
}

.status-label {
    font-weight: 700;
    margin-bottom: 10px;
}

.label-before {
    color: #b22222;
}

.label-after {
    color: var(--vert-sauge-fonce);
}

.img-wrapper {
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    overflow: hidden;
}

.col-before .img-wrapper {
    background: #faeade;
}

.col-after .img-wrapper {
    background: #e8f0e9;
    color: var(--vert-sauge-fonce);
    font-weight: 600;
    font-style: italic;
}

.img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.img-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-caption {
    font-style: italic;
    color: var(--gris-anthracite);
    margin-top: 10px;
    font-size: 0.95rem;
}

.case-analysis {
    background: var(--blanc-casse);
    padding: 20px;
    border-radius: 8px;
}

.case-analysis h3 {
    font-family: var(--font-geometrique);
    font-size: 1.1rem;
    color: var(--gris-anthracite);
    margin-bottom: 10px;
}

.case-analysis ul {
    list-style-position: inside;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.95rem;
    padding-left: 0;
    margin: 0;
}

.feedback-item {
    list-style: none;
    margin-top: 8px;
    font-style: italic;
    font-family: cursive, sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.trophy-icon {
    font-size: 1.2rem;
}

.clickable-img {
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.clickable-img:hover {
    transform: scale(1.01);
    opacity: 0.95;
}

#lightboxModal {
    display: none;
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 20px;
}

#lightboxModal img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

/* =========================================================
   12. PAGE PREUVES
   ========================================================= */
.preuves-header {
    text-align: center;
    padding: 0 20px 20px 20px;
}

.preuves-header h1 {
    font-family: var(--font-geometrique);
    color: var(--gris-anthracite);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.preuves-header p {
    font-size: 1.1rem;
    color: var(--gris-anthracite);
}

.section-police {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    border-left: 5px solid var(--vert-sauge);
    margin-bottom: 40px;
}

.section-police h2,
.info-card-box h2,
.case-header h2,
.case-analysis h3,
.contact-reassurance h4,
.feedback-item span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.section-police h2 img,
.info-card-box h2 img,
.case-header h2 img,
.case-analysis h3 img,
.contact-reassurance h4 img,
.feedback-item img {
    height: 1em;
    width: auto;
    display: inline-block;
}

.proof-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.proof-card {
    background-color: var(--blanc-casse);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    border: 1px dashed var(--vert-sauge);
}

.proof-card-title {
    font-size: 1.8rem;
    font-family: var(--font-geometrique);
    color: var(--vert-sauge);
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.2;
}

.proof-card p {
    font-size: 1.05rem;
    color: var(--gris-anthracite);
    margin: 0;
    font-weight: 500;
}

.section-police h3 {
    font-family: var(--font-geometrique);
    color: var(--gris-anthracite);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.protocol-intro {
    margin-bottom: 15px;
    line-height: 1.7;
    color: var(--gris-anthracite);
}

.protocol-list {
    margin: 0 0 15px 20px;
    line-height: 1.8;
    color: var(--gris-anthracite);
}

.section-testimonials {
    margin-bottom: 60px;
    border-left-color: var(--orange-pastel);
}

.section-testimonials h2,
.section-police h2,
.info-card-box h2,
.case-header h2,
.case-analysis h3,
.contact-reassurance h4,
.feedback-item span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.section-testimonials h2 img,
.section-police h2 img,
.info-card-box h2 img,
.case-header h2 img,
.case-analysis h3 img,
.contact-reassurance h4 img,
.feedback-item img {
    height: 1em;
    width: auto;
    display: inline-block;
}

.empty-testimonials-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #eee;
}

.empty-testimonials-box p {
    font-style: italic;
    color: #777;
    margin: 0 0 20px 0;
    font-size: 1.05rem;
}

.btn-affaires {
    background-color: var(--vert-sauge);
    display: inline-block;
}

/* =========================================================
   13. PAGE MENTIONS LEGALES
   ========================================================= */
.legal-header {
    text-align: center;
    padding: 0 20px 20px 20px;
}

.legal-header h1 {
    font-family: var(--font-geometrique);
    color: var(--gris-anthracite);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.legal-header p {
    font-size: 1.1rem;
    color: var(--gris-anthracite);
}

.legal-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border-left: 5px solid var(--vert-sauge);
    margin-bottom: 25px;
}

.legal-card.card-last {
    margin-bottom: 60px;
}

.legal-card.card-vert {
    border-left-color: var(--vert-sauge);
}

.legal-card.card-orange {
    border-left-color: var(--orange-pastel);
}

.legal-card h2 {
    font-family: var(--font-geometrique);
    color: var(--gris-anthracite);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.legal-card p,
.legal-card ul {
    font-size: 0.95rem;
    color: var(--gris-anthracite);
    line-height: 1.6;
}

.legal-card ul {
    margin-top: 10px;
    padding-left: 20px;
}

.legal-card li {
    margin-bottom: 8px;
}

.legal-card a.email-link {
    color: var(--vert-sauge);
    text-decoration: underline;
}

.legal-list {
    list-style: none;
    margin: 15px 0 15px 15px;
    line-height: 1.8;
}

.legal-bullet-list {
    margin: 15px 0 15px 25px;
    line-height: 1.8;
}

.legal-paragraph {
    margin-top: 10px;
}

/* =========================================================
   14. PIED DE PAGE (FOOTER)
   ========================================================= */
.site-footer {
    background-color: var(--marron-grise);
    color: #ffffff;
    padding: 50px 0 20px 0;
    margin-top: 60px;
}

.site-footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.site-footer .footer-col {
    flex: 0 1 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.site-footer .footer-col-center {
    align-items: center;
    text-align: center;
}

.site-footer .footer-col h4 {
    font-family: var(--font-geometrique);
    color: #ffffff;
    font-size: 1.2rem;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.site-footer .footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.site-footer .footer-subtext {
    font-size: 0.95rem;
    opacity: 0.9;
}

.site-footer .footer-link-highlight {
    color: var(--orange-pastel);
    font-weight: 600;
    text-decoration: none;
}

.site-footer .footer-link-highlight:hover {
    text-decoration: underline;
}

.site-footer .footer-socials {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

.site-footer .footer-social-icon {
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.2s ease;
}

.site-footer .footer-social-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.site-footer .footer-social-icon:hover {
    background: var(--orange-pastel);
    transform: translateY(-2px);
}

.site-footer .footer-col:nth-child(1) {
    text-align: left;
    align-items: flex-start;
}

.site-footer .footer-col:nth-child(2) {
    text-align: center;
    align-items: center;
}

.site-footer .footer-col:nth-child(2) .footer-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.site-footer .footer-col:nth-child(3) {
    text-align: left;
    align-items: flex-start;
}

.site-footer .footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.site-footer .footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.site-footer .footer-legal-links {
    display: flex;
    gap: 10px;
    font-size: 0.85rem;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0.9;
}

.site-footer .footer-legal-links a {
    color: var(--orange-pastel);
    text-decoration: none;
}

.site-footer .footer-legal-links a:hover {
    text-decoration: underline;
}

/* =========================================================
   15. DESIGN RESPONSIVE MOBILE & TABLETTE (TOUT EN BAS)
   ========================================================= */
@media (max-width: 850px) {

    /* Banner & Logo */
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 15px 10px;
    }

    .site-logo {
        max-height: 180px;
    }

    .banner-text {
        border-left: none;
        padding-left: 0;
        border-top: 2px solid rgba(0, 0, 0, 0.05);
        padding-top: 12px;
        width: 100%;
    }

    .company-name {
        font-size: 1.6rem;
    }

    .site-title {
        font-size: 1.3rem;
    }

    .site-subtitle {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    /* Navigation horizontale défilable */
    .main-nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-tabs {
        flex-wrap: nowrap !important;
        justify-content: flex-start;
        padding: 5px 10px;
        gap: 6px;
    }

    .nav-tabs a {
        padding: 10px 12px;
        font-size: 0.8rem;
    }

    /* Passage des grilles en colonne unique */
    .grid-2col,
    .contact-grid,
    .grid-2col-form,
    .proof-highlights-grid,
    .zones-grid,
    .suspects-grid,
    .duo-grid,
    .signaux-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .step-card {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 15px;
    }

    .step-number {
        margin: 0 auto;
    }

    .img-wrapper {
        height: auto;
        max-height: 300px;
    }

    /* Blocs CTA */
    .cta-zones-block,
    .cta-suspects-block,
    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 25px 15px;
    }

    .cta-stamp {
        transform: rotate(0deg);
        width: 360px;
	max-width: 100%;
        margin: 0 auto;
    }

    /* Footer Mobile */
    .site-footer .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .site-footer .footer-col,
    .site-footer .footer-col-center {
        align-items: flex-start;
        text-align: left;
    }
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-icon {
    height: 1.2em;
    width: auto;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

.footer-socials {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 2px;
}